home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Magnum One
/
Magnum One (Mid-American Digital) (Disc Manufacturing).iso
/
d12
/
v8n06.arc
/
STDPRN2.C
< prev
next >
Wrap
C/C++ Source or Header
|
1989-02-28
|
241b
|
18 lines
/* create stdprn for Turbo C
* version 2
*/
#include<stdio.h>
main()
{
FILE *stdprn;
if(!(stdprn = fdopen(4,"wt")))
{
fprintf(stderr,"\nUnable to open stdprn");
exit(0);
}
fprintf(stdprn,"stdprn is open\f");
}